home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 07-01.BAS < prev    next >
BASIC Source File  |  1991-06-06  |  338b  |  27 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode 3
  7. FGcursor 0
  8.  
  9. FGsetattr 14, 0, 0
  10. FGtext "yellow", 6
  11.  
  12. FGsetattr 10, 0, 0
  13. FGtext " green", 6
  14.  
  15. FGsetattr 12, 0, 1
  16. FGtext " blinking", 9
  17.  
  18. FGsetattr 12, 7, 0
  19. FGlocate 24, 0
  20. FGtext " Press any key. ", 16
  21. FGwaitkey
  22.  
  23. FGsetmode OldMode
  24. FGreset
  25.  
  26. END
  27.